home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000114-20000217 / 000150_news@columbia.edu _Wed Jan 26 14:27:59 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA08561
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 26 Jan 2000 14:27:59 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA26939
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 26 Jan 2000 14:21:21 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: C-Kermit for OpenBSD
  11. Date: 26 Jan 2000 19:21:19 GMT
  12. Organization: Columbia University
  13. Message-ID: <86nhff$q9o$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <388f3c66.0@news.pacifier.com>,
  17. Mike Freeman <mikef@pacifier.com> wrote:
  18. : I've tried to build C-kermit (latest version) on an OpenBSD system with
  19. : the following results:
  20. : Script started on Wed Jan 26 09:56:32 2000
  21. : pacifier:/users3/m/mikef/tmp> make openbsd
  22. : "makefile", line 750: Missing dependency operator
  23. : "makefile", line 751: Missing dependency operator
  24. : "makefile", line 752: Missing dependency operator
  25. : "makefile", line 753: Missing dependency operator
  26. : "makefile", line 754: Missing dependency operator
  27. : "makefile", line 755: Missing dependency operator
  28. : Fatal errors encountered -- cannot continue
  29. : pacifier:/users3/m/mikef/tmp> exit
  30. : exit
  31. : Script done on Wed Jan 26 09:57:07 2000
  32. : What is going on here?
  33. Most likely the makefile is in DOS format (CRLFs) but needs to be
  34. in UNIX format (LFs).
  35.  
  36. Another common problem with makefiles is that tabs somehow get expanded
  37. to spaces.
  38.  
  39. 'make' is a very handy tool, but it should not have been designed to
  40. distinguish between space and tab, or LF, CR, or CRLF.
  41.  
  42. By the way, if your copy of the makefile is in DOS format, then it is
  43. likely that the source files are too.  Most C compilers on UNIX are highly
  44. intolerant of CRLFs, for no good reason at all.
  45.  
  46. - Frank